Deprecated API


Contents
Deprecated Methods
org.neo4j.graphdb.GraphDatabaseService.enableRemoteShell()
          in favor of a configuration parameter 'enable_remote_shell' Simply put:
 enable_remote_shell = true
 
In your configuration and it will be started with default port and RMI name. If you'd like to control the port and RMI name of the shell instead put:
 enable_remote_shell = port=1337,name=shell
 
 
org.neo4j.graphdb.GraphDatabaseService.enableRemoteShell(Map)
          in favor of a configuration parameter 'enable_remote_shell' Put:
 enable_remote_shell = port=1337,name=shell
 
In your configuration and it will be started with the supplied port and RMI name. If you instead would like to use default parameters, put:
 enable_remote_shell = true
 
 
org.neo4j.graphdb.PropertyContainer.getPropertyValues()
          in favor of using PropertyContainer.getPropertyKeys() in combination with PropertyContainer.getProperty(String). 
 



Copyright © 2010 Neo4j. All Rights Reserved.